*{
    margin: 0px;
    padding: 0px;
}
body{
    background-color: black;
}
body i,a{
    color: #66fcf1;
    text-decoration: none;
    font-size: 24px;
    border: none;
    cursor: pointer;
}
body i:hover,a:hover{
    color: red;
}
#logo{
    height: 10vh;
    width: 15vh;
}
#logo img{
    height: 100%;
    width: 100%;
}


/* navbar */

.navbar{
    background-color: #0b0c10;
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#login{
    font-size: 24px;
}
.search-box{
    display: flex;
    align-items: center;
    border: 2px solid #66fcf1;
    border-radius: 10px;
    background-color: #0b0c10;
}
.search-box input{
    font-size: 20px;
    padding: 5px;
    background: transparent;
    border: none;
    outline: none;
    color: #66fcf1;
}
.search-box button{
    border: none;
    border-radius: 10px;
    background-color: #0b0c10;
}
.dialogBox {
    display: none;
    position: absolute;
    top: 48px;
    background-color: #0b0c10;
    border-radius: 10px;
    border: 2px solid red;
    padding: 10px;
    width:150px;
  }
.bars:hover .dialogBox {
    display: block;
}


/* contact us-secton */

h1,h2{
    background-color: #0b0c10;
    color: red;
    margin-top: 25px;
    text-align: center;
    padding: 10px;
}
#h2{
    display: flex;
    justify-content: center;
}
h2{
    display: inline-block;
    /* margin-top: 25px; */
    border-radius: 10px;
}
#outer-contact-section{
    display: flex;
    align-items: center;
    justify-content: center;
}
#inner-contact-section{
    background-color: #0b0c10;
    color: #66fcf1;
    margin-top: 25px;
    padding: 20px;
    text-align: center;
    border: 2px solid #66fcf1;
    border-radius: 10px;
}
#inner-contact-section input,select,textarea{
    margin-bottom: 20px;
    padding: 5px;
    font-size: 16px;
    border: 2px solid #66fcf1;
    background: transparent;
    border-radius: 5px;
    color: darkgray;
}
#message{
    font-weight: bolder;
    color: darkgray;
    margin-bottom: 10px;
    font-size: 18.72px;
}
select{
    color: darkgray;
    background-color: #0b0c10;
}
#inner-contact-section button{
    border-radius: 5px;
    font-size: 14px;
    padding: 5px 10px;
    background-color: #66fcf1;
    color: #0b0c10;
    font-weight: bold;
    cursor: pointer;
    border: none;
}
#inner-contact-section button:hover{
    background-color: #45a29e;
    color: #ffffff;
}


/* direct-contact-info-section */

#contact-info{
    background-color: #0b0c10;
    color: gray;
    margin-top: 25px;
}
.contact-info-h2{
    margin: 0;
}
#contact-info h3{
    display: inline-block;
    color: #66fcf1;
}
h3{
    margin-left: 10px;
    margin-bottom: 10px;
}


/* footer */

#footer{
    background-color: #0b0c10;
    margin-top: 25px;
}
#footer p,a{
    text-align: center;
    color: #66fcf1;
    font-size: 20px;
    padding: 10px;
}
#footer i{
    font-size: 18px;
}
#footer i:hover{
    color: #66fcf1;
    cursor: auto;
}
#apps-box{
    display: flex;
    justify-content: center;
}
.apps{
    height: 5vh;
    width: 8vw;
    background-position: center;
    background-size: cover;
    margin: 10px;
    margin-top: 0;
    border-radius: 10px;
    border: 2px solid white;
}
.apps:hover{
    transform: scale(1.2);
    transition: 0.5s;
    cursor: pointer;
}
.img1{
    background-image: url(../android.jpg);
}
.img2{
    background-image: url(../ios.jpg);
}
 #copyright-section{
    display: flex;
    justify-content: center;
}
#connect-us-section{
    display: flex;
    justify-content: center;
}
#connect-us-section i{
    font-size: 24px;
}
#connect-us-section i:hover{
    color: red;
    transform: scale(1.5);
    transition: 0.5s;
    cursor: pointer;
}